Self-control | Order | Standards
Electronic Engineering.
Mechanical Engineering.
Heating Engineering.
Computer Science. 🌌
Computers can be frustrating! 🤯
Amour of God!
Not an essay
Symbols | Keywords | Statements
var x = 4;
alert("Hello");
public class Person
{
public string Name { get; set; }
public int Age { get; set; }
}
Code
⚙️
Output
Filename|.extension
homework.docx
Markup → Presentation
Code ⇒ Logic
HyperText Markup Language.
<h1>Heading 1</h1>
<p>Paragraph</p>
Some simple text <button>Say hello</button>
var array = [];
for (var i=0;i<10;i++) {
array.push(i);
}
console.log(array);
F12 → Copy & Paste.
function sayHello() {
alert("Hello");
}
<button onclick="sayHello()">Say hello</button>
;
so the program knows when a statement has finished.
var x = 4;
alert("Hello");
Operand | Operator | Operand | Meaning |
---|---|---|---|
2 | + | 2 | 2 plus 2 |
message | = | "Hello" |
Assign to a variable |
Count | ++ | Increase a variable by 1 |
{ }
.function X() {
return "Hello";
}
Or...
var x = () => "Hello";
function greet(name) { return "Hello " + name; }
greet("Luke");
🌌
Computing is a whole universe! 🌌
We've learnt the basics for programming.
We've learnt the importance of virtues!